home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / Programming / Source / winterp-1.13 / src-server / user_prefs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-10-04  |  2.7 KB  |  68 lines

  1. /* -*-C-*-
  2. ********************************************************************************
  3. *
  4. * File:         user_prefs.h
  5. * RCS:          $Header: user_prefs.h,v 1.4 91/03/14 03:12:54 mayer Exp $
  6. * Description:  type definition and global datastructure for user preferences
  7. * Author:       Niels Mayer, HPLabs
  8. * Created:      Thu Aug 11 00:06:04 1988
  9. * Modified:     Thu Oct  3 20:00:57 1991 (Niels Mayer) mayer@hplnpm
  10. * Language:     C
  11. * Package:      N/A
  12. * Status:       X11r5 contrib tape release
  13. *
  14. * WINTERP Copyright 1989, 1990, 1991 Hewlett-Packard Company (by Niels Mayer).
  15. * XLISP version 2.1, Copyright (c) 1989, by David Betz.
  16. *
  17. * Permission to use, copy, modify, distribute, and sell this software and its
  18. * documentation for any purpose is hereby granted without fee, provided that
  19. * the above copyright notice appear in all copies and that both that
  20. * copyright notice and this permission notice appear in supporting
  21. * documentation, and that the name of Hewlett-Packard and David Betz not be
  22. * used in advertising or publicity pertaining to distribution of the software
  23. * without specific, written prior permission.  Hewlett-Packard and David Betz
  24. * make no representations about the suitability of this software for any
  25. * purpose. It is provided "as is" without express or implied warranty.
  26. *
  27. * HEWLETT-PACKARD AND DAVID BETZ DISCLAIM ALL WARRANTIES WITH REGARD TO THIS
  28. * SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS,
  29. * IN NO EVENT SHALL HEWLETT-PACKARD NOR DAVID BETZ BE LIABLE FOR ANY SPECIAL,
  30. * INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  31. * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
  32. * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  33. * PERFORMANCE OF THIS SOFTWARE.
  34. *
  35. * See ./winterp/COPYRIGHT for information on contacting the authors.
  36. * Please send modifications, improvements and bugfixes to mayer@hplabs.hp.com
  37. * Post XLISP-specific questions/information to the newsgroup comp.lang.lisp.x
  38. *
  39. ********************************************************************************
  40. */
  41.  
  42. #include "../src-server/config.h"
  43.  
  44. typedef struct {
  45.   String lisp_init_file;
  46.   String lisp_transcript_file;
  47.   String lisp_lib_dir;
  48.   Boolean enable_init_msgs;
  49.  
  50. #ifdef WINTERP_WANT_INET_SERVER
  51.   int    service_port;
  52.   String service_name;
  53.   Boolean enable_AF_INET_server;
  54. #endif                /* WINTERP_WANT_INET_SERVER */
  55.  
  56. #ifdef WINTERP_WANT_UNIX_SERVER
  57.   Boolean enable_AF_UNIX_server;
  58.   String  unix_socket_filepath;
  59. #endif                /* WINTERP_WANT_UNIX_SERVER */
  60.  
  61.   Boolean enable_XtError_break;
  62.   Boolean enable_XtWarning_break;
  63.   Boolean enable_XError_break;
  64. } USER_PREFS_DATA, *USER_PREFS_DATA_PTR;
  65.  
  66. extern USER_PREFS_DATA user_prefs;
  67.